# First install the Eclipse and also install the Maven plugins

# Create a Maven package

# Create a java class and paste code from the JavaFPGrowthExample.java file to the class file creat and named it as JavaFPGrowthExample.java

# Now replace your pom.xml file with the attached pm.xml file

# Now update the project (right click on the project name -> Maven -> Update project)

# Now run the project as Maven clean (right click on the project -> Run as -> Maven clean)

# Now run the project as Maven install (right click on the project -> Run as -> Maven install)

# Now run the project as Maven build(right click on the project -> Run as -> Maven build -> write "clean package" in the Goal field -> Apply -> Run)
Trouble shooting: If you see build failure, it's most likely you are using the JRE rather than JDK. To solve the issue
just right click on the "JRE System Library" -> Properties-> Select "Alternate JRE:" and show the JDK installation path. Now update the Maven project. Then repeat the above steps again.

# After the build has been done, your jar with dependencies will be generated under that "Target" directory under your project with specified name indicated on the pom.xml file. 
Make sure that you have defined the main class in the manifest section (in our case it would be "com.reza.JavaFPGrowth.JavaFPGrowthExample").

